From 629169ce9bd7991c1ae1839a0983fce8f17b6560 Mon Sep 17 00:00:00 2001 From: Marco Date: Thu, 1 May 2014 22:42:59 +0200 Subject: [PATCH] Less false positives for MEDIATYPE_VIDEO Remove the ffmpeg2theora String to suppress false positives when doing type detection on ogg files (Importing pull 23 from github) Bug: 63584 Change-Id: Ib39ed06f895624b55d15a001cb0a2cd3129f4bb0 --- includes/MimeMagic.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/includes/MimeMagic.php b/includes/MimeMagic.php index 3448c6aa5c..f68e109219 100644 --- a/includes/MimeMagic.php +++ b/includes/MimeMagic.php @@ -979,7 +979,7 @@ class MimeMagic { $head = fread( $f, 256 ); fclose( $f ); - $head = strtolower( $head ); + $head = str_replace( 'ffmpeg2theora', '', strtolower( $head ) ); // This is an UGLY HACK, file should be parsed correctly if ( strpos( $head, 'theora' ) !== false ) { -- 2.20.1